home *** CD-ROM | disk | FTP | other *** search
- package com.extensibility.app.test;
-
- import com.extensibility.app.BaseDocument;
- import com.extensibility.xml.URI;
- import java.io.IOException;
- import java.io.Reader;
- import java.io.Writer;
-
- class TestApplication$TestDocument extends BaseDocument {
- private String theText;
-
- public String getText() {
- return this.theText;
- }
-
- public TestApplication$TestDocument(URI var1) {
- super(var1);
- }
-
- public TestApplication$TestDocument() {
- this.theText = "this is a new document";
- }
-
- public TestApplication$TestDocument(String var1) {
- this.theText = var1;
- }
-
- public void write(Writer var1) throws IOException {
- var1.write(this.theText);
- }
-
- public void read(Reader var1) throws IOException {
- }
- }
-